home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 June: Reference Library / Dev.CD Jun 94.toast / Periodicals / develop / develop Issue 15 / develop 15 code / Floating Windows / Sample / Source / floaters.r < prev    next >
Encoding:
Text File  |  1994-03-17  |  881 b   |  51 lines  |  [TEXT/MPS ]

  1. #include "SysTypes.r"
  2. #include "Types.r"
  3.  
  4. include "floaters.rsrc";
  5.  
  6. resource 'vers' (1, purgeable) {
  7.     VersionBytes,
  8.     verUS,
  9.     VersionString,
  10.     VersionString", © 1993 Apple Computer, Inc."
  11. };
  12.  
  13. resource 'SIZE' (-1) {
  14.     reserved,
  15.     acceptSuspendResumeEvents,
  16.     reserved,
  17.     canBackground,
  18.     multiFinderAware,
  19.     backgroundAndForeground,
  20.     dontGetFrontClicks,
  21.     ignoreChildDiedEvents,
  22.     is32BitCompatible,
  23.     isHighLevelEventAware,
  24.     localAndRemoteHLEvents,
  25.     notStationeryAware,
  26.     dontUseTextEditServices,
  27.     reserved,
  28.     reserved,
  29.     reserved,
  30.     PartitionSize * 1024,
  31.     PartitionSize * 1024
  32. };
  33.  
  34. type 'FLOT' as 'STR ';
  35.  
  36. resource 'FLOT' (0) {
  37.     ApplicationName", by Dean Yu.  © 1993 Apple Computer, Inc., all rights reserved."
  38. };
  39.  
  40. resource 'MENU' (128) {
  41.     128,
  42.     textMenuProc,
  43.     0x7FFFFFFD,
  44.     enabled,
  45.     apple,
  46.     {
  47.         "About "ApplicationName"…", noIcon, noKey, noMark, plain,
  48.         "-", noIcon, noKey, noMark, plain
  49.     }
  50. };
  51.